Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
207 views
Further to this earlier post of mine, I encountered a new problem whereby I couldn't properly retrieve the value entered in the TextBox in the secondary RadWindow.  Instead of the actual value entered, I was always getting "0" as the Text property.

So I read everything I could find including this and this but none of these solutions seemed to work.

I eventually resorted to using the TextBox's onblur event to store the final value entered into a HiddenField control on the page.  I could then retrieve this value successfully from my server-side code.

But I'm wondering, is that the only (easiest?) way to pass back such a value from a secondary RadWindow?

Note: All of my RadWindows have Ajax UpdatePanels on them.

Robert
rdmptn
Top achievements
Rank 1
 answered on 14 Sep 2012
1 answer
47 views
Hi,

I am facing issue in Rad combo box. On initial page load there are multiple values in rad combo box so it displayed scroll bar in combo item list.After that on condition bases i am filling this rad combo box on client side, after filling if combo box has only 2-3 values available then it displayed hidden scroll bar space in item list as below:



so, how can i remove the hidden scroll bar space ?

Kalina
Telerik team
 answered on 14 Sep 2012
1 answer
61 views
I have rad window with search criteria... when user selects the criteria and press submit button it will get the records from the database and assigning the records from data table to excel. Is there any  way i can show the progress bar in the rad window while export to excel.

Is there anything like radupload..
Marin Bratanov
Telerik team
 answered on 14 Sep 2012
1 answer
226 views
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");
            }
          

        }
Shinu
Top achievements
Rank 2
 answered on 14 Sep 2012
1 answer
85 views
Hello,

Im trying using radwindow as mdi, until now its works fine, but when i open multiple windows and when i click on other window, i cant put focus on fisrt element of the window activated, the focus stays in any textbox on last window.

Sry for my english, because im brazilian learning english.

Tnks.
Marin Bratanov
Telerik team
 answered on 14 Sep 2012
1 answer
46 views
I think there may have been a change of behavior in how RadTextBox controls deal with multiline input in the latest quarterly release:

Previously, when a multiline value was supplied that included line breaks (when the user hits ENTER), the text posted back would include a '\r\n' to delineate the break. Now, the text posted back seems to include just the single '\n' character to delineate the break.

Telerik - can you please confirm the change in behavior? Is there any way of having the control go back to specifying a line break via '\r\n' instead? Need to know as we're going to have to change a lot of code in order to compensate. Please advise.

Thanks,

- Mike Oliver
Martin
Telerik team
 answered on 14 Sep 2012
1 answer
64 views

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

Marin Bratanov
Telerik team
 answered on 14 Sep 2012
3 answers
179 views
Hi
i open a radwindow with radbutton1. I asign the OpenerElementID="radbutton1".
When i disable the radbutton1.enabled="false" i can still open the radwindow when i click on radbutton1.
Whats wrong here.
Thanks for any help
Marin Bratanov
Telerik team
 answered on 14 Sep 2012
1 answer
76 views
I am using AutoCompleteBox control
Inpage load I written below code

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.


Ivana
Telerik team
 answered on 14 Sep 2012
1 answer
143 views
Hello,

Can someone help me to achieve this functionality using client side?

I have a radcombobox and a radlistbox that was initially populated on page load.  Radcombobox has an attribute named "Attribute1".  When the selected index of the radcombobox is greater than 0, the radlistbox will be cleared out and new items will be added to the radlistbox which is the value of the custom attribute of the selected radcombobox item, "Attribute1".  This works fine.  My issue is when I set the radcombox selected index back to 0, I can't restore the previous value of the radlistbox before it was cleared out.

Thanks!
Ivana
Telerik team
 answered on 14 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?