Posts by Jedaias Rodrigues • 6,718 points
226 posts
-
1
votes1
answer104
viewsA: What is the name of the menu that displays details on Android?
If you are using Phonegap, then I recommend using Jquery Mobile, as it has a feature called Collapsible and its way of using can be found here. <div data-role="collapsible"> <h4>Isso vai…
-
3
votes2
answers664
viewsQ: How to share functions between javascript files?
I have two files JavaScript. arquivo1.js function teste() { alert("fui chamado!"); } In the arquivo2.js i would like to have access to function teste() of arquivo1.js without having to make the…
-
5
votes1
answer643
viewsQ: How to connect to the Azure Database?
Well friends, I have a database on Azure, but I can’t connect to it. The error is that my IP is not authorized to perform such connection, what I did was add a new rule to the firewall of the…
-
1
votes1
answer76
viewsA: How to create Asp.Net MVC Web Project in Azure?
Well, I don’t know if this will help anyone, but instead of following the tutorials, I created the local project without Azure and then published it. It’s working for now, now just study about the…
-
1
votes1
answer76
viewsQ: How to create Asp.Net MVC Web Project in Azure?
Yeah, I checked the google, I have given in forums and watched videos, but unfortunately I still haven’t gotten an easy-to-understand tutorial to create a web project on Asp.Net MVC in Azure. The…
-
3
votes2
answers149
viewsQ: How to resolve error with OWIN?
Well friends, I created an Asp.Net MVC web project No Authentication, but now I’m in need of authentication. I’m following some tutorials like that to put authentication from scratch, but after…
-
1
votes2
answers1346
viewsQ: How to login to WEB project Asp. Net MVC No Authentication?
Well, I created a WEB project and at first I figured I wouldn’t need to add the login system, so I used the template No Authentication (so far so good...). The problem is that now I would like to…
-
2
votes3
answers145
viewsQ: Problems when displaying javascript string
I have the following code: $(function(){ var curso = controller.getNomeCurso(); $("#curso").text(curso); }); The problem is in line 18, because I cannot display values with special characters…
-
1
votes2
answers38
viewsA: How to change the format of the day in javascript?
My friend, since we’re talking about the pattern pt-br, Besides the answer given by friend Sergio, I believe that the editions I made in the link below can help you a lot.…
javascriptanswered Jedaias Rodrigues 6,718 -
0
votes1
answer367
viewsQ: How to use Jquery in the Cordova project?
I started an open source hybrid project in HTML, CSS and Javascript using Cordova. I added Jquery, but I can’t use its features. Is there some mistake on my part? The code can be viewed here. When…
-
1
votes1
answer79
viewsA: Add item to a Telerik Chart pie template
Well, I see that in the template you already have a variable with the total, I believe it is in javascript, so the only problem is in displaying it. Telerik already has standard forms for this, in…
-
4
votes1
answer177
viewsQ: How to disable default value in Kendo dropdownlist?
I have a Kendo grid and I’m creating a template for editing the data presented on the grid, but I’m having problems with the code below... This is part of the code of my template: <script…
-
4
votes1
answer119
viewsQ: How do MVC application authentication with Linux?
I have a project in ASP.Net MVC and I’m putting the authentication manually. Everything is going well, but I used as a reference a ready-made project that uses the Entityframework, but I want to use…
-
1
votes1
answer757
viewsA: How to access Json object property?
With the help of link posted by Marciano.Andrade in the comment of my question, I arrived at the solution. The point is that I am receiving a list of objects, so just create an array of such…
-
1
votes1
answer757
viewsQ: How to access Json object property?
I am receiving via Ajax a Json object, and would like to turn it into a C# object and access its properties. How can I do that? I ended up reversing the name of the variables (objeto, itens), the…
-
0
votes1
answer63
viewsQ: How to work with Javascript objects?
I have two objects, objeto1 and objeto2 and I want to assign all the values of objeto1 at the objeto2, but when I use objeto2 = objeto1 and change some value of objeto2 the objeto1 is also changed…
javascriptasked Jedaias Rodrigues 6,718 -
0
votes1
answer145
viewsA: How to customize Ruby tags on Rails?
Thank you very much, but no longer need, I continued researching and found the answers right here:…
-
1
votes1
answer145
viewsQ: How to customize Ruby tags on Rails?
I have a form: <% form_tag :action => 'validacao' do %> <p> Login: <%= text_field :acesso, :email %></p> <p> Senha: <%= password_field :acesso, :password…
-
1
votes2
answers139
viewsQ: How to send object by radiobutton?
I have a radiobutton: <input type='radio' onclick='clickRadioButton(this)' value='new object { nome = #: nome #}' /> It is returning a string, but I want an object with the name property.…
-
0
votes1
answer505
viewsQ: Is it possible to use Razor inside Javascript file?
I have a file .js and would like to use the syntax of Razor within it. I tried to simply use the @ but it didn’t work. Is there any possibility? Can anyone help me? I’ve done a lot of research, but…
-
0
votes2
answers1344
viewsQ: Open another page in modal Jquery
I have a problem that I can’t solve in any way. Well, I have a project on Asp.NET MVC as follows: Model public class Objeto { public Objeto() { } public Objeto(string nome, double valor, double…
-
1
votes4
answers1604
viewsA: Access javascript variable in template loop
Gentlemen, unfortunately none of the answers worked at first, but they helped and helped a lot to arrive at the solution! I believe that the problem was basically some kind of incompatibility…
-
3
votes4
answers1604
viewsQ: Access javascript variable in template loop
I am creating an Asp.Net MVC project and found a problem in View. See the code: <script> var data = []; for (var i = 0; i < '@(Model.Count())'; i++) { data[i] = { "source":…
-
4
votes1
answer166
viewsA: How to put a text cursor to start on the right? Calculator
Use: text-align: right; and ready! rsrsrsrsrsrsr... Reply given in comment by @bfavaretto
-
-1
votes1
answer99
viewsQ: Android + Webservice on Cloud Platform
Fala galera... Well, I really need to create a project. A WEB and Android system. But it has to be Cloud and free of charge. I researched and started a project using Openshift. I installed a plugin…
-
2
votes1
answer476
viewsQ: Web Service Java in Openshift using Tomcat 6 (Jboss EWS 1.0)
I’m trying to create a Web Service in JAVA so it can be consumed by an Android application. I need to use a Cloud technology, and only found the free Openshift and best recommended for now... Well,…