Hi,
I have a simple form as
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:PlaceHolder runat="server" ID="tbl_holder" />
</div>
</form>
and code behind as
tbl_holder.Controls.Clear();
Table tbl = new Table();
tbl.Width = Unit.Percentage(98);
tbl.ID = "tbl_ID";
TableHeaderRow tr = new TableHeaderRow();
tr.VerticalAlign = VerticalAlign.Top;
TableHeaderCell tc = new TableHeaderCell();
Label lbl_test = new Label();
lbl_test.ID = "lbl_1" ;
lbl_test.Width = Unit.Pixel(50);
lbl_test.Text = "task 1";
RadToolTip test_tooltip = new RadToolTip();
test_tooltip.ID = "test_tip_1" ;
test_tooltip.TargetControlID = "lbl_1";
test_tooltip.IsClientID = true;
test_tooltip.Text = "test 1 tooltip";
test_tooltip.Position = ToolTipPosition.TopRight;
test_tooltip.Width = Unit.Pixel(300);
test_tooltip.Height = Unit.Pixel(40);
test_tooltip.RenderInPageRoot = true;
test_tooltip.Skin = "WebBlue";
tc.Controls.Add(test_tooltip);
tc.Controls.Add(lbl_test);
tr.Cells.Add(tc);
tbl.Rows.Add(tr);
tbl_holder.Controls.Add(tbl);
The tooltip appears in 100% zoom mode, but If I increase zoom to 125%, tooltip does not appear. I tested in IE11.
Thanks for your help.
Hi,
I have a grid with editmode set to Batch. I save grid changes in the UpdateCommand event. This event doesn't fire if no changes have been made, but there is still a postback. How do I force this event to always fire when the "Save Changes" button is selected? I need to update some related values outside the grid.
Thanks In Advance!
Jerry

I have a radgrid which is programmatically binding inside needDataSource event. Additionaly I set two parameters for columns inside columnCreated event:
boundColumnFilter.AutoPostBackOnFilter = true;
boundColumnFilter.CurrentFilterFunction = GridKnownFunction.Contains;
Filters are enabled of course. I would like filtering data after press enter key but it doesn't work (nothing happen after press enter).
If I configure radgrid manually in aspx with parameters like above everything works well. Do you have any sugestion?
I'm having a hard time to use the delete function of listview with a custom javascript delete confirmation.
What I'd like to do is use the bootstrap modals, such that onClientClick will trigger a modal, prompting the user to confirm or cancel. I can't quite figure out how to wire up the modal to the linkbutton to return true\false to the link button while breaking the postback. Has anyone done something similar?
Current code:
<asp:LinkButton ID="lnkDeleteQuote" runat="server" Text="Delete" CommandName="Delete" OnClientClick="if(!confirm('Are you sure you want to delete this?')) return false;"></asp:LinkButton>How to place the drop-down list to expand on the page immediately below the input area in chrome Browser.
It is working Fine in Firefox and IE but in chrome its not working properly.
The Issue occurs ​when the Page is Scrolled down and when we are opening the drop-down list
it is detaching from the immediately below the input area.

I have two RadButtons on a page, 'save' and 'save and exit' (see attachment..). When I click on the 'save and exit' button, I get the expected behavior however when I click on the 'save' button, the functionality dose not work. It is strange because although the buttons do the exact same thing except that 'save and exit' redirects the user to a different page.
Why is the confirmation window not showing when I hit the save button?
Please advice
Thank you
Hello
Attached picture with my problem, the filter goes behind the Popup Modal
how to solve? in vb.net language
my .aspx
<telerik:RadGrid ID="RadGrid2" runat="server" AllowFilteringByColumn="True" GroupPanelPosition="Top" AllowPaging="True">
<ClientSettings>
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>
I am trying to use a datatable as a radgrid source and display an image in the cell. I have followed this example (Displaying Images in a GridView Column), but it just displays the URL string instead of the image. In searching for a solution many people have this same problem. I have tried other things, but they too do not work.
If I use RadGrid_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e) and the first code section below it works. Unfortunately that brings up another problem. I also use ToggleRowSelection(object sender, EventArgs e) and this removes the image when it is called. I could possibly call RadGrid_ItemDataBound from ToggleRowSelection, but one has EventArgs and the other has Telerik.Web.UI.GridItemEventArgs and casting does not work. There may be a better way to get RadGrid_ItemDataBound to fire after ToggleRowSelection, but I would like to be able to put the image in initially if possible.
RadGrid_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)...
Image imgTrue = new Image();imgTrue.ImageUrl = "images/true.png";item["Picture"].Controls.Add(imgTrue);
Here is my code from the linked example. images/false.png appears instead on the image.
DataTable oDT = new DataTable();//oDT.Columns.Add("Picture");oDT.Columns.Add(New DataColumn("Picture", GetType(String));DataRow myRow = oDT.NewRow();myRow["Picture"].ResolveUrl("images/false.png");oDT.Rows.Add(myRow);DataSet MyDataSet1 = new DataSet("pic");MyDataSet1.Tables.Add(oDT); RadGrid1.DataSource = MyDataSet1;RadGrid1.DataBind();
I'm having a hard time wrapping my brain around this one! The AsyncUpload is going to be part of a form that captures other information about the document. The file will be uploaded to the server and a new record is inserted into the database. As part of this, I am also modifying the filename.
My issue is that the file is moving out of the temporary location before any of the service side code is run. It IS uploaded OK and moving to the right folder. But it is doing it immediately at the form's submit button click so I am unable to change it's filename. This then causes my script to error out because it can't find the temporary file (it is already removed).
I'm sure this is a rookie question! But please take a look at this code. Thanks!
protected void btnDocUpload_Click(object sender, EventArgs e)
{
foreach (UploadedFile file in RadAsyncUpload1.UploadedFiles)
{
//we are going to rename the file with the Catnumber + the date
string newDocName = txtCatNumber.Text + DateTime.Now.ToString("M-d-yyyy");
docBL doc = new docBL();
doc.DocumentUpload(txtCatNumber.Text, newDocName);
file.SaveAs("_SDFiles_\\" + newDocName + file.GetExtension(), true);
}
}