AJAX :: Create Dashboards With Using Controls
Oct 11, 2012i want to know how to crearte dashboards on asp.net with using ajax controls..
View 1 Repliesi want to know how to crearte dashboards on asp.net with using ajax controls..
View 1 RepliesI would like to know how to build interactive dashboards using sql server reporting services. I am using the .rdl reports where I can generate a static gauge report but I want my user to interact with gauge at runtime to see its effects .I hope am making myself clear.
View 1 RepliesI am interested in designing/building a dashboard application which will include widgets that represent applications that might be developed in different languages/architectures (PHP, Java, ASP.NET).
View 1 RepliesI'm dynamically adding a calendar extender like so:
[Code]....
When a postback occurs I get the following error:
Extender control 'ceDateFrom' is not a registered extender control.
Extender controls must be registered using RegisterExtenderControl() before calling RegisterScriptDescriptors().
Parameter name: extenderControl
i need to create a page that will ave lots of slider controls on it. about 50 in total. Does anoyne have any examples or good ideas how to handle that many sliders on a single page.
The problem i have is that the ajaxcontrol toolkit sliders seem to behave a bit eratic... eg sometimes you cant slider the slider on select the desired value and sometimes all the sliders disapear just leaving the text box they are linked to visible?
maybe there is a better slider control to use?
is anybody interesting in share and join to develop callback web controls. My purposes is lower unsynchronized page development cost. I have developed a base class and a set of common controls. Currently, they allowed to be loaded dynamically in a control or ASCX via callback event using sample server side code. Control library code will automatically register javascript and render it on client browser. These controls worked fine in both callback and postback. To load dynamically from an ASCX file.
'ascx1.ascx contain some callback-able controls
Private Function LoadAscx_DuringCallback(Optional ByVal RenderMe As Boolean = False) As String
Dim rt As String = ""
div1.Controls.Clear()
Dim c As Control = LoadControl("~/Test2/ASCX/ascx1.ascx")
c.ID = "ascx1"
div1.Controls.Add(c)
If RenderMe Then rt = CallbackManager1.RenderControlHelper(c)
Return rt
End Function
Or to load dynamically as a control
'c is a callback-able TextBox
Private Function LoadControl_DuringCallback(Optional ByVal RenderMe As Boolean = False) As String
Dim rt As String = ""
div1.Controls.Clear()
Dim c As New ACT360_CallbackControls.ZYH.TextBox
AddHandler c.KeyUp, AddressOf TextBox_KeyUp
AddHandler c.GetFocus, AddressOf TextBox_GetGocus
div1.Controls.Add(c)
If RenderMe Then rt = CallbackManager1.RenderControlHelper(c)
Return rt
End Function
I want to create drag and drop controls at runtime on web page how can i do it?
View 6 RepliesHow i can create collapsible textbox with jquery or ajax control toolkit.
View 1 RepliesI am wondering if it is possible to create AJAX Toolkit control using JavaScript/JQuery or not. I know that I can create controls at server (at design or code-behind) and interact with its properties using JavaScript but I would rather want to initalize and create controls at client side using JavaScript/JQuery.
View 3 RepliesI want to create an ajax panel (correct terminology?) in my webpage that updates just part of the page instead of updating the whole page.Can I do this while using ASP.net and Visual Basic.net? I do not use C#.If this is possible using VB.net, can someone point me to a few documents that will help me get started?
On a 1 to 10 scale, I would rate my technical knowledge at only about 5 or 6.
I want to create ajax tab and also I want to keep tabs in session.
View 2 RepliesI want to create dynamic ajax tab and wrote below code for this. but my problem is: tab is created just for one time even though I want to create dynamic tabs each time menuitems are clicked.
here is my code:
[Code]....
I made myself a Partial View that list a set of items.
Each item have a checbox and the control have 2 dropdowns (Actions like delete, archive, etc and Filters)
At the moment this works. I have a little JavaScript (jQuery) that fire when one of the dropdowns are changed and post the form (the checked item's id) to my controller action where I do an ugly "if this, then that" depending on the selected action and then render the form again.
It works fine, but a single view can hold several of these controls, and loading all the data over is a bit overkill.
I figured I need to create some Ajax control that does the same job, and just update the control the user select an action or filter for.
I am using ASP.NET 2.0
I want to create a dll Only for Ajax ComboBox. I mean I want when I add this dll in toolbax, I able to drag Ajax Combo Box control on web form.Ajax provided source code & JavaScript files for ComboBox but how I can Create a dll from this.
I'm doing Gallos examples with the Photogallery and the ScriptControlDescriptorinstead of the clientside $create. The thing is I don't understand is in which page eventto put the
[Code]....
I'm using Visual Studio 2010.
Are there any step by step tutorials on how to use the SlideSHowExtender to create a slideshow?
I have had a look before posting but couldn't find any step by step info.
Each time I try to drag the SlideShowExtender to a web form I get a round black circle with a black line through the middle, in other words it won't let me use it and I must be trying to use this control incorrectly.
We need to generate ajax loading image in asp.net like as [URL]. Is it Possible in asp.net? If possible provide some solution with example or sample url to develope this.
View 3 Repliesi want to create accordion programmatically in c#. i want to define how many panes a accordion will have on the basis of count of items present in the dropdown. i dnt know whether anybody gets it or not what i am trying to achieve. here goes again create a accordion which will multiple panes depending upon the no of items present in the dropdown list.
View 3 RepliesI have a complex webform with a dynamic number of controls. I need to create some of them dinamically. There is no problem with asp.net validators, texbox, dropdownlists... but I can't find the way to do it with the autocompleterextender.
View 6 RepliesHow do i create dynamic textbox and do textbox validation in AJAX?
View 2 RepliesI'm using ASP.NET for a search app web site.My search retrieves exactly one result per fetch. Once the search is complete and the user selects "Update", a new result is fetched and the old result is written to the ViewState as a generic List. The new result replaces the old one.I am trying to get the page to update (via partial post-back), so that the old result drops down the screen and the new result sits on top of it. Much like the concept of a stack.
View 2 Repliesl'd like to create facebook like chat application in asp.net. This is real situation and I cant implement any workaround....since there would be large no. of users using the application.I need to implement 1-1 chat functionality where user can chat with multiple users by opening multiple chat windows much similar to facebook.
View 1 RepliesHow to create a countdown timer using AJAX in ASP.NET 3.5..
View 3 RepliesI created ajax tab dynamicaly.it works well except one thing .every time i clicked on menuitem a new tab created and if I clicked on that menuitem again the tab created again.I dont want to create one tab repeatedly I just want to create each tab just once and if I click on repeated menuitem the existed tab just be active.
here is my code:
[Code]....
In my application, I am using Tab Container in one Panel. At runtime on one of the Button Click
I want to create Tab Panel in to the tab Container. I am doing this as follows:
protected void btnMSOpen_Click(object sender, EventArgs e)