I am trying to implement a call to a stored procedure. This proc is used to insert a new project record. The values for the proc parameters come from a page that has a FormView. In the FormView is a table that has a combination of RadTextBoxes and RadComboBoxes that are supposed to supply the parameters to the proc. I know the stored proc works because I can execute it manually from SMS. But I can't get it to execute from the FormView page, mainly because I don't know how to "execute" the stored proc. Before anyone asks using a Grid is not an option! I'd be doing something else if I could use a grid but I can't.
When I upload a file using radUpload it loads great - then if I work backwards - as some users do - I select a radio button that does ajax update - I am losing the file in the radUpload. I have set this radUpload.EnableViewState = true. This doesn't seem to work. Ideas? Thanks.
The button Add Another File is being concatenated all that you see is Add Another F - this began occurring after updating to the newest version - but before installing the internal version that you suggested I use and it is still an issue. Thanks.
I have one web page, it need to process around 1 hour ++, so im using ajaxloadingpanel to let the user get inform that the page still processing. But after 1 hour ++ , the process finish processing, but the ajaxloading icon still remain there. It wont stop.
May i know whether ajaxloading have time limit on it? We cannot let it load for so long time? If not, it will hang there?
I have a radGrid to which I need to give links to few columns and I am doing as given below:
protected void radGrid_PreRender(object sender, EventArgs e)
{
foreach (GridDataItem dataItem in radGrid.Items)
{
foreach (GridColumn col in radGrid.MasterTableView.RenderColumns)
{
if (col.ColumnType == "GridBoundColumn")
{
if (col.UniqueName == "CardNumber")
{
string celltxt = dataItem[col.UniqueName].Text;
LinkButton link = new LinkButton();
link.Text = celltxt;
link.PostBackUrl = string.Format("CardDetails?CardNo={0}", link.Text);
dataItem[col.UniqueName].Controls.Clear();
dataItem[col.UniqueName].Controls.Add(link);
}
}
}
}
}
My issue is the postbackurl for the linkbutton is not dependent on a single/current cell value. Its depends on other cells as well. This can be something as given below:
I dont know how to get AccountID value which is there on the other cell and to my luck it can be invisible in many cases. When I try to access a dataItem["AccountID"] which is invisible gridboundcolumn, it is throwing "Cannot find a cell bound to column name 'AccountID'"} System.Exception {Telerik.Web.UI.GridException} exception.
Any ideas on this???
Is there anyway to give URL's something like this <a href="cardgroupview.aspx?id=<%# Eval("CardGroupID") %>"><%# Eval("CardGroupName")%></a> at the time of adding GridBoundColumns to radGrid at runtime.
I have made a RadMenu on the top and align to the right.
Problem: When I resize the window, the RadMenu does not move along. For example, if I make the window smaller, the RadMenu is out of screen. Only when I hover the mouse over the menu, it shifts to the correct position immediately (align to the right).
Hi,
Iam actually binding a radgrid using object datasource.
One of the column(Long Description) has whitespaces in between texts
For example qwe have text like (Sample Text)..You can see like the text has 3 or 4 white spaces.
While displaying on the ardgrid the browser automatically trimms the spaces and displays (Sample Text).The column text should display as it is..
Is there any property to prevnet the trimming of spaces in the column.
Ok, this might be a serious problem, if there is not another setting that works with it...
(Don't you hate when people start off posts that way!!! :))
If I set Keyboard navigation to true for a grid. If I hit the enter key, the row I am on goes into edit mode, whether I allow editing or not. While I like the keyboard navigation feature, this is not good.
The grid I am using is a display grid only. I have EnabledPostBackOnRowClick=true. When a user clicks on a row, an ajax request is done updating a seperate area that is used for data editing. This works fine with mouse navigation, but with keyboard navigation, I assumed hitting enter would act as a mouse click triggering the same functionality. I was wrong, and this happens even with AllowAutomaticInserts/Deletes/Updates set to false.
Now, since the data in the grid is a query, and cannot tie directly back to the data, an update can't occur, but you can see the problem.
Comments? (I'm hoping there is just an additional setting I'm missing!)
Is there any way to specify the initial position of a pop-up edit form? The default "upper left hand corner of the grid" doesn't work well with the page layout I'm working on.