All Questions

2
answers

What is the difference between success and done?

Well I have a line of code in ajax which I do not know if it's better to use success or done I do not understand the difference between these terms but in the end the 2 do the same or I misunderstand the concept. $('#main for...
asked on 31.08.2017 / 17:14
5
answers

Validate a date dd / mm / yyyy with regular expressions

The file% co_of% validation date JS fails if you put as days 10 and 20. The code is this: function validaEdat(){ vesSumant(); vfalladata = false; //Comprovació de la data de naixement i el correu electrònic var vregexN...
asked on 31.03.2017 / 16:40
2
answers

Update an app already uploaded to the play-store

I have an app uploaded to the play-store of Google , which I have been updating several times, without problems. While I was creating the update from the existing code with the Eclipse , every time I tried my application on my mobile, it era...
asked on 26.10.2016 / 12:17
2
answers

Get public methods of a Java class

I need to get the list of public methods of a Java class, but I do not want to get the wait , toString , hasCode , etc, that the Java class inherits. I just want to get the public methods of that class, not those inherited from...
asked on 21.02.2018 / 13:28
2
answers

Problem with AutoPersistenceModel FluentNHibernate C #

I have a problem with FluentNHibernate so I can use Auto Persistence Model , sorry if I do not spell the words correctly techniques. This is the structure of my project. I always used all the entities in the base in the data...
asked on 16.01.2017 / 20:21
3
answers

Does Java support the passing of variables by reference? [duplicate]

When I pass an object to a method using a parameter, the object is passed by value or reference? The doubt comes by this code: int a = 2; cambiar(a); System.out.println(a); public static void cambiar(int c) { c = 10; } In the previou...
asked on 16.02.2016 / 02:54
5
answers

Load JSON file and store variable content

I have the following code: <script type="text/javascript"> $(document).ready(function(){ $("form.loader").on('submit',function(e){ e.preventDefault(); $.ajax({ url: "data.json",...
asked on 25.03.2017 / 07:31
4
answers

Report between 2 dates in Codeigniter

Excuse me; I get this error when exporting to Excel. Can you tell me why it would be the error? In this part I put the function I did to export to Excel: public function imprimir_excel($FInicial, $FFinal){ //cargando la librer...
asked on 23.07.2016 / 20:01
3
answers

Are class and typename equal in the template context?

I use: template<class T> Arbol<T>::Arbol(){ } when T is going to make a class. and use: template<typename T> Arbol<T>::Arbol(){ } when T goes to be a type for example bool , char...
asked on 06.12.2015 / 09:02
2
answers

Django Rest Framework without styles or scripts

Once I have the API working, when I enter the graphical environment ( domain.com/API ) of tests I get no styles, meaning that all < a href="/ questions / tagged / css" class="post-tag" title = 'show questions with the tag "css"'> css and the...
asked on 11.05.2016 / 15:45