Posts by Leonardo Ribeiro de Aguiar • 105 points
9 posts
-
2
votes1
answer686
viewsA: How to recover the ID of the selected element in Asp:Repeater via javascript?
I managed to solve the problem as follows. follows the code javascript with the solution: $(".elemento").click(function () { var index = this.id.substr(this.id.length - 1, 1); var id =…
-
1
votes1
answer686
viewsQ: How to recover the ID of the selected element in Asp:Repeater via javascript?
I have a asp:Repeater and need to recover in javascript the ID of the item referring to the record displayed in asp:Repeater. Take a look at mine asp:Repeater <asp:Repeater ID="rpt"…
-
1
votes1
answer904
viewsQ: How to recover all the events that are in Fullcalendar?
I have a page that has a list of events that can be dragged to a Fullcalendar. After dragging all my events to Fullcalendar and clicking the finish button I want to get a list, or something like…
-
2
votes1
answer63
viewsQ: How to display the version of my website on all pages?
I want to display in the footer of all my pages the version on which my site is running. For example: Version 1.0 After I do an update on my website and publish it again would be something like…
-
1
votes1
answer163
viewsQ: How to do this SELECT (SQL Server 2008)?
to be quite honest I don’t even know how to start my question. So I’ll first put the information I have. I have the following structure in my database. And I need to make a SELECT that returns to me…
-
0
votes3
answers3776
viewsA: How to run a jquery/javascript function only in the page load and avoid postback?
I solved the problem by working with Coockie as @Renanborges suggested and the events itself Accordion. To manage the cookies I used the jQuery Cookie. The end result was like this:…
-
0
votes3
answers3776
viewsQ: How to run a jquery/javascript function only in the page load and avoid postback?
Hello. I have a function to "create" a Accordion of jQuery UI in my div. Turns out inside this mine div there are several controls that make post on the page. What I want is that by making a post on…
-
0
votes2
answers619
viewsA: How to add a (full) div to Asp:Panel using jquery?
It’s not exactly a solution to the problem, I couldn’t find it, even with the help of colleagues here at Stackoverflow. What I did was change the strategy. Instead of using the…
-
2
votes2
answers619
viewsQ: How to add a (full) div to Asp:Panel using jquery?
Hello. I have the following scenario. I want to use Ajaxcontroltoolkit’s Collapsiblepanelextender to make a collapsed panel. However, the content that this panel will display will be dynamic and…