Hi,
Is it possible to have RadLinkButton in Datalist? Because the OnItemCommand() event in DataList is not firing.
Can anyone show me an example?
Hi there.
I just upgraded to 2016.3.914.35 and now a blue border appears around my radmenu when clicking on it to expand an option. Please refer to the attached screen shot.
This is only in chrome.
It doesn't appear in MS Edge, MS Internet Explorer or Firefox.
Please help.
Thanks in advance.
Hi ,
I have a tab strip with five "li" tags.Two tabs contains grids in it.The last tab which is also having the grid is not loading as it is not hitting the "onTabSelect" function.
All other tabs are hitting this function but last one does not.This is happening only in Microsoft Edge Browser.
function onTabSelect(e) {
$("#load").text("Loading ...");
uncheckedSelectedTab();
if (e.item.innerText == "ABC") {
Method1();
} //Added for 105423 - end
else if (e.item.innerText == "DEF") {
Method2();
}
else if (e.item.innerText == "PQR") {
Method3();
}
.....
}
Please help.
Regards,
Sandhya.
I need to add an image icon in GridColumnGroup near the column text.
Is there a way to add it?
Hi Team,
I am facing a issue in RadGrid, when EditMode="Batch",BatchEditingSettings-EditType="Cell" BatchEditingSettings-OpenEditingEvent="Click".
If I have result of 10 rows, I click on a cell in a columns and I need to choose a value from dropdown, but I do not select any value and click on another cell in same column, then I receive a Error : Unable to get property 'replace' of undefined or null reference with below reference.
b.RadComboBox.htmlDecode=function(c){return b.RadComboBox.replace(c,{"<":"<",">":">",""":'"',"&":"&"});
};
b.RadComboBox.htmlEncode=function(c){return b.RadComboBox.replace(c,{"&":"&","<":"<",">":">"});
};
b.RadComboBox.isIEDocumentMode8=function(){return document.documentMode&&document.documentMode==8;
};
b.RadComboBox.replace=function(e,d){for(var c in d){e=e.replace(new RegExp(c,"g"),d[c]);
Can you please help me on this.
~
Sandeep
Hi All,
I'm using the selectedindexchanged of one of my Drop down lists to populate another ddl.
It's populating the ddl with with the data i want. However when i want to use the newly populated ddl value/text for a insert/update. It only updates/inserts as a blank value.
i know this has something to do with my Data Biding, but i can't seem to get the ddl to bind.
Code Used to populate the ddl:
protected void RadDropDownList3_SelectedIndexChanged(object sender, DropDownListEventArgs e)
{
RadDropDownList DropDownList3 = ((RadDropDownList)((RadDropDownList)sender).Parent.FindControl("RadDropDownList3"));
RadDropDownList DropDownList2 = ((RadDropDownList)((RadDropDownList)sender).Parent.FindControl("RadDropDownList2"));
DropDownList2.DataSourceID = null;
DropDownList2.DataSource = null;
DropDownList2.Items.Clear();
string prinparam = DropDownList3.SelectedText;
string strqry = string.Format(@"select distinct locationfullname from D_Location where DivisionName = '" + prinparam + "' ORDER BY 1 ;", prinparam);
DataTable dt = new DataTable();
using (strcon)
{
var command = new SqlCommand(strqry, strcon);
SqlDataAdapter da = new SqlDataAdapter(strqry, strcon);
strcon.Open();
DataSet ds = new DataSet();
da.Fill(dt);
DropDownList2.Items.Clear();
foreach (DataRow dr in dt.Rows)
{
DropDownList2.Items.Add(dr[0].ToString());
}
}
DropDownList2.DataBind();
DropDownList2.SelectedValue = DropDownList2.SelectedText;
}
Hi,
the only way I found to show the fields window is the Context Menu.
I know how to do this - but it is not very easy for my clients. First they aren't used to right click on a web page (except for browser commands) and second they even have no idea what's possible.
So having a simple "Fields List" button would be great - a State-Button (Checkbox) would be the best.
Is this possible?
Manfred
Hi there;
I’m tryring to create a radGrid with data from database
What I want to do that I already convert some rows to columns in the database query:
SELECT Z.id , WR. NAME,
NVL(MAX(DECODE (Z.ZONE , 'A', Z.n )),0) A,
NVL(MAX(DECODE ( Z.ZONE , 'B', Z.n )),0)B,
NVL(MAX(DECODE ( Z.ZONE , 'M', Z.n )),0) M
FROM ………………
And I need to publish this data in a radgrid
What is the problem?
That this columns actually change over time, so I can’t keep them static
My idea is to loop through this values(A,B,M,….) in c# code-behind and convert them to columns in a command string ? Is it possible to do so?