Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
65 views
Hi,

I'm hoping someone can help me out... I have a tabstrip and multipage view in a page and i have a datalist inside one of the views, which contains a usercontrol

now the usercontrol contains a radasyncupload and a radgrid.. and a radajaxmanagerproxy inside the usercontrol which ajaxifies the radgrid...     

the ajaxifixation does NOT work in this scenarios.. resulting in controls/radgrid not updating.  i added the radmultipage and radtabstrip as ajax update settings, but i think the event does not bubble upto radtabstrip and radmultipage

currently i do not have time to reproduce my complex scenarios into simpler model. but here is the thing..

the datalist with usercontrol (with radgrid) works fine when outside multipage and fails when inside. the usercontrol works fine inside radmultipage (by itself) without datalist.
and the usercontrol has a radajaxmanagerproxy and radgrid.

pelase let me know if you have come across this scenario or similar and found a solution.

thanks.


Kate
Telerik team
 answered on 02 Feb 2012
2 answers
139 views
I am rebinding a Hierarchical radgrid after closing a custom edit/insert form using the below code and javascript. I would like to reset the state of the Grid as it was when the user clicked to edit a record. Currently all childgrids close up to the master. The attached images show what I mean. EditDetailRecord.png is where I want the user to be after the Rebind(). AfterDataRebind.png is currently what they see.

protected void Page_Load(object sender, EventArgs e)
{
    RadAjaxManager manager = RadAjaxManager.GetCurrent(Page);
    manager.ClientEvents.OnRequestStart = "onRequestStart";
    manager.AjaxSettings.AddAjaxSetting(manager, this.__rejectedBatchesRadGrid);
    manager.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(Manager_AjaxRequest);  
 
    if (!IsPostBack) {  }
}
 
protected void Manager_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
    this.__rejectedBatchesRadGrid.MasterTableView.SortExpressions.Clear();
    this.__rejectedBatchesRadGrid.MasterTableView.GroupByExpressions.Clear();
    this.__rejectedBatchesRadGrid.Rebind();
}







Tim
Top achievements
Rank 2
 answered on 02 Feb 2012
4 answers
149 views
Good morning,

We are using a RadCombobox within a user control as an employee selector tool.  User types in a few characters of an employee name or number and it auto-populates with matches from our database.

The problem is our database is rather large and depending on the speed of the person typing it is sometimes performing a callback and executing a query which may return way too much data.  For example:

User types "513"
Callback is initiated
ItemsRequested server-side event fires
SQL query executes and begins retrieving 25,000 records containing 513
Meanwhile, user is typing the rest of the employee#, but the server is waiting on SQL

I would like to make sure the ItemsRequested server-side event only fires when the user hits the Enter key after typing, is this possible?
Kalina
Telerik team
 answered on 02 Feb 2012
1 answer
76 views
Hi!
Is there a way to show the entire content of the subject of the appointment in the month and week view?
Thanks in advance
Kind Regards

G.
Kate
Telerik team
 answered on 02 Feb 2012
1 answer
76 views
Hi

Is it possible to resize appointment by less than 30 minutes? Say 5 or 10 minuts per mouse move. With EnableExactTimeRendering  it is possible to render times precisely, so users would expect to change the time in the same way.

thanks in advance
Kir
Peter
Telerik team
 answered on 02 Feb 2012
1 answer
79 views
Hi everybody,

I'd like to resize an appointment in RadScheduler timeline view. In my current implementation the end time always automatically snaps to the end of the whole day. Is it possible that the end time snaps e.g. to every 15 minutes in timeline view?

Is it possible to change only the start time of an appointment? Currently I can only resize an appointment by dragging the end time.

Also, when dragging the whole appointment I cannot change the time, only the day, i.e. the appointment always snaps to the same start and end time.

Thank you for your appreciated help!
Roland
Peter
Telerik team
 answered on 02 Feb 2012
1 answer
52 views
I have a scenario with a panel (100% width/height) which contains a splitter with two vertical panes. These panes have a CSS class applied including borders. When the panel is updated via ajax, I notice the bottom and right borders of the left pane dissapear. I am guessing the splitter needs to recalculate its size based on the update panel being added through the ajax update. I handle the splitter OnClientLoad and "jiggle" the left pane by adding 1 to its width and subtracting 1 from its width and then doing the same for its height, and this seems to take care of the issue. I am wondering if there is a different method of making sure the splitter panes resize properly after an ajax update inserts the update panel around the splitter, or if Telerik is planning on modifying the splitter at some point in the future so that I don't need to include this OnClientLoad script with every splitter that may be inside an ajaxified container.
Dobromir
Telerik team
 answered on 02 Feb 2012
3 answers
77 views
Hi!

I have a big problem with the appointment DragAndDrop. I updated my website to the last version of DLL and then DragAndDrop don't work.
If I reload the 2011.2.915.40 DLL versione DragAndDrop work.


What can I do?


Thanks in advance

Francesco Balatti
fra@zelando.com
Peter
Telerik team
 answered on 02 Feb 2012
5 answers
149 views
I have a webform that contains a RadGrid and the grid is configured for in-place editing. The RadGrid has 5 columns, where the first 4 columns are data columns, and the 5th column is an edit button column. More specifically, the first 3 columns of the grid are GridBoundColumn column types, the fourth column is a GridDropDownColumn, and the last (or fifth) column is a GridEditCommandColumn.

When the web form is viewed, the RadGrid displays multiple rows of data; let's hypothetically say that the grid displays 10 rows of data. All the data cells within the grid display data, expect the cells under the 4th column. The cells in the 4th column are always blank. If I switch the 4th column from a GridDropDownColumn to a GridBoundColumn, the problem does not occur. When column 4 is based on a GridBoundColumn, all the cells under column 4 are populated. But when column 4 is a GridDropDownColumn, the cells are always blank.

In addition, if I randomly click the edit button on one of the rows; let's say row 5, the cell in column 4 of row 5 suddenly becomes populated, and all the cells of column 4 below row 5 become populated. But the cells of column 4 that are above row 5 are still blank. IOWs, whichever row that you click the edit button, the cell of column 4, and all the cells under column 4, become populated. But all the cells of column 4 that are above the row where you clicked edit remain blank. Again, if I use a GridBoundColumn for in-place edits, instead of a GridDropDownColumn, this problem does not occur.

Has anybody seen this and can you explain how to fix this problem?
Elliott
Top achievements
Rank 2
 answered on 02 Feb 2012
1 answer
204 views

Hi all,

 

I have 2 radgrid on the same page, populated with 2 different tables, and I have some columns equal, like "Code", "Name" and "surname"...How can I copy the equal values selecting the row on the first radgrid, into the second radgrid?

Thanks !!!

Shinu
Top achievements
Rank 2
 answered on 02 Feb 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?