Posts by Diego Filipe Pedro Santos • 531 points
22 posts
-
0
votes2
answers48
viewsA: Help to sum days on a user-selected date
See if that helps you... Here it works every day of the month, different from the answer of the colleague below. function myFunction() { var datainicio = $("#dtini").val(); let d = new…
-
0
votes2
answers213
viewsQ: How to make Ckeditor mandatory to fill in as a required attribute
I cannot make the ckeditor behave like an input field or textarea with required <textarea data-toggle="tooltip" maxlenfth="200" data-maxlen="200" class="form-control" rows="2" id="cumprimentos"…
-
0
votes1
answer47
viewsQ: Alternative to the Codigniter table component
I am developing the following screen using Codeigniter: My difficulty is in leaving the code in an elegant way, without the use of the table library (I think it is not the most suitable for what I…
-
1
votes2
answers177
viewsA: the onKeyUp event of the java script influences the Customvalidator Function
So I’m using the components called Customvalidator and Updatepanel, remembering that there are some rules to insert Updatepanel, if you need more details just ask: Webform1.aspx: <div>…
-
1
votes1
answer3085
viewsA: Send local repository to remote repository
Being quite simple, there are some ways to publish your project in bitbucket, certain that you’ve already downloaded the git Bash( line code ) and Git GUI (Graphical Interface) tool, a very simple…
bitbucketanswered Diego Filipe Pedro Santos 531 -
1
votes1
answer327
viewsA: I need to do a validation on the start date and end date with javascript
So I’m using the components called Customvalidator and Updatepanel, remembering that there are some rules to insert Updatepanel, if you need more details just ask: Webform1.aspx: <div>…
-
0
votes1
answer58
viewsA: Problems with WCF + Mysql
First thing I did was enable the web.config servicedebug based on this link enable service debug, from there I checked which version of my Mysql.Data was different from the server I installed in it…
-
6
votes1
answer561
viewsQ: Problems Xamarin Asynchronous method
In the event of a button of my APP had the following code it worked running on the android emulator, but when I passed the app to the mobile generates a message the app stopped. Button…
-
1
votes1
answer58
viewsQ: Problems with WCF + Mysql
I want to use this method, locally it works and returns what I want, when I command IIS simply returns me on the last screen shows the error: Within the Service1.svc.Cs have this method: public…
-
0
votes1
answer56
viewsQ: GAPI user authentication failure issues
Personal someone already had problems with this error, I am using the GAPI to generate some reports, and began to present this problem, I have checked password of the account among other details,…
-
1
votes1
answer975
viewsQ: Add Xamarin.Forms Package Problems
I’m starting some projects with Xamarin Studio, I’m having some problems and I still can’t solve always appear these 2 errors, I looked at a solution in stackoverflow.com, but the solutions given…
-
1
votes3
answers292
viewsA: Validate ZIP code in Shell-Script
You may not have closed the expression with dollar sign: Example: ^\d{5}[-]\d{3}$
-
6
votes3
answers13619
viewsQ: How to split a string into an array in Javascript?
There is an elegant way to split a string into an array based on the example: var x = "FAT* FAT32*"; And result in something like this: x[0] = "FAT*"; x[1] = "FAT32*";…
-
3
votes3
answers2450
viewsA: Remove list item based on property value
Try it like this: PlItens.RemoveAll(x => x.nit_codit == 0);
c#answered Diego Filipe Pedro Santos 531 -
1
votes2
answers9326
viewsA: How to read the data of a.xml file and display in a textbox
Using as a basis what you had, added assigns a + textbox that will work as an append. XmlTextReader reader = new XmlTextReader("C:\\Users\\diego-santos\\Desktop\\teste.xml"); while (reader.Read()) {…
-
4
votes2
answers3408
viewsA: Create trunk, branch and tag folders in Subversion in an existing repository
You can create the 3 folders in hand smoothly(trunk, branch and tag), some software like Tortoise has the option to create this structure. The important thing is that you can always go back to get…
-
2
votes3
answers517
viewsA: How is the life cycle of an application until a release with Subversion is released?
I hope to contribute, in my professional experience trunk always worked as a version that reflects what is in production or the version that is closest to it, that is most often the guaranteed,…
-
4
votes2
answers1711
viewsQ: Correct way to perform a dynamic UPDATE with PHP in Mysql
What is the right way to accomplish update dynamic? the big problem is being dynamic, if I pass only the first parameter and others are not changed. What is the best way to leave this update only…
-
1
votes2
answers903
viewsA: Copy a selected option from a select Multiple to another select Multiple with jquery
I ended up using it in this way, based on your answer, I just decided to try to simplify: $("#cursos option:selected" ).each(function() {…
-
2
votes2
answers903
viewsQ: Copy a selected option from a select Multiple to another select Multiple with jquery
I want to copy a option or more options’s selected from a select multiple to another select multiple with jquery. <select id='cursos' multiple> <option selected>curso 1</option>…
-
5
votes3
answers2742
viewsQ: Is there a better way to insert an option in select with jquery?
I was wondering if there’s a better way to insert a option in the select with jquery. Example: <select name="municipio_evento" id="municipio_evento"> <option value=""></option>…
-
0
votes3
answers4291
viewsA: What is the best way to select an option by the text and not by the value in jQuery?
You could assign the value or text equal to the text in option, thus: <option value="Janeiro"> Janeiro </option> or <option value="0" text="Janeiro"> Janeiro </option> Ai…