Hello,
I am using an html table to populate rows in item template of
radcombobox. my first column in html table is checkbox and later are
label controls. How can I access which checkboxes are checked on a
button click? I am using this code but, it only returns 1 row:
Table mytbl = (Table)ddnInfo.Items[0].FindControl("tblinfo");
Response.Write(mytbl.Rows.Count.ToString());
foreach (TableRow row in mytbl.Rows)
{
var checkBox = (CheckBox)row.Cells[0].Controls[0];
if (checkBox.Checked)
{
Response.Write("checked");
}
}
Hello Telerik Team,
I have used RadToolTip in my site extensively. Recently I have updated the Telerik version to “2012.2.724.35” and after that i am facing formatting issues related to RadToolTip.
Older Version we were using: 2011.1.519.35
New Version currently we are using: 2012.2.724.35
I have gone through on all release notes between the above two versions and as per the release note of “Q1 2012 (version 2012.1.215)” there is a improvement in default padding and/or margin to the content area and Tooltip title element for better UI and visualization. But these formatting improvements forced to change the other controls position present inside the RadToolTip control since in the new Telerik version the RadToolTip captures the more padding space which minimize the actual content area where the other controls are present.
To resolve this issue I have to change many of the pages in our project but it takes huge time to do changes for all RadToolTip.
Kindly suggest, is there any way to apply the older padding to RadToolTip or override the RadToolTip default padding?
Please suggest any workaround to get rid from these formatting issues.
Thanks,
Ashish
radtxtKeywordSearch.Filter =
RadAutoCompleteFilter.Contains;
radtxtKeywordSearch.Delimiter =
",";
string strcon = System.Configuration.ConfigurationManager.ConnectionStrings["con"].ToString();
SqlConnection con = new SqlConnection(strcon);
con.Open();
SqlDataAdapter adp = new SqlDataAdapter("select keywordsearch from tblkeywordsearch", con);
DataSet ds = new DataSet();
adp.Fill(ds);
radtxtKeywordSearch.DataSource = ds.Tables[0];
radtxtKeywordSearch.DataTextField =
"keywordsearch";
radtxtKeywordSearch.DataBind();
My query is in the textbox If I am entering example "real"
then it will display what r the related words is there like intellisense (like google )
if we want from that list we will select if not we will press Enter button
so whatever we entered that text only will be in the textbox that is scenario I need
but for me it is not like that
when i entered "real" it will display relatedwords right, first word is selecting
I entered " real"
real player
real estate
realtek
is coming then i click enter it is selecting real player
but i dont want like i need whatever I entered that only should be there when i click enter button
please suggest me ASAP.