Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
171 views
My product makes use of the splitter control. Navigation is a thin pane on the left and the main content is on the right.

The thin navigation pane has a menu on it. Since the menu is in its own iframe, submenus expand down instead of right, simply because there is no room in the frame to expand right.

I was given a request to make the menu expand right instead of down, which would require it to expand outside of the radsplitter pane that it's in. Is this even possible? If so, how do I do it?
Jeffrey Sylvan
Top achievements
Rank 1
 answered on 07 Oct 2009
8 answers
221 views
I am displaying multiple appointments in a timeslot. I want to show some spacing between two slots but unfortunately no way I could get that. It always displays all timeslots together.

I tried different ways and one was to set margin-left for the following:

.rsApt.PencilPage
{
    margin-left: 5px;
}
.rsApt.PencilPage .rsWrap
{
    border: 0;
    margin-left: 0px;
}
.rsApt.PencilPage .rsAptInner
{
    border: 0;
    margin-left: 0px;
}


I tried margin-left for all 3 of above one after another but none works. Finally I did following:

.rsApt.PencilPage div
{
    margin-left: 5px;
}

that affects all divs within - so it worked but still this is not ideal solution. It displays the bottom border with some margin with left border.

Please let me know how should I do this?


Thanks,
Piyush
Peter
Telerik team
 answered on 07 Oct 2009
7 answers
483 views
We want to hide/remove "Show 24 hours..../Show business hours..." link from bottom/left side of the control. Is their a property to hide it?

One more thing, we are showing all 24 hours, but when the scheduler opens up, we need "06:00 AM" as the first row at the top. Is their a way to scroll the control to a specific time?

Please let me know.

Thanks.
Rana.
Peter
Telerik team
 answered on 07 Oct 2009
1 answer
84 views
Hello,
this is probably easy and I'm missing something simple. I have small CMS web app that uses editor control.  My question is how do I link to a page in a current web application?  I tried Hyperlink Manager, Document Manager without  much success.

Thank you!
Rumen
Telerik team
 answered on 07 Oct 2009
3 answers
185 views
Hello,

I want to extend linkmanager usercontrol dialog of radeditor.
I have added a button control in LinkManager.ascx. by setting the title etc as done for 'Insert button'....

<input type="text" id="LinkURL" style="width: 222px;" />
<button type="button" id="CustomButton" style="min-width: 80px; _width: 80px; margin-left: 8px;">
<script type="text/javascript">
setInnerHtml("CustomButton", localization["Custom"]); 
</script
</button>

but when dialog opened the button's title is set as 'undefined'. How can this be acheived?

Also, I want to pass some value to the usercontrol to decide whether to show or hide this new 'custom button'.
I tried something in 'Page_PreRenderComplete' in which I have my RadEditor like ..

 Dim showcustom As Boolean = True
Dim linkManager As Telerik.Web.UI.DialogDefinition = radEHtmlContent.GetDialogDefinition("LinkManager")
linkManager.Width = "500"
linkManager.Height = "300"
linkManager.ClientCallbackFunction = ""... here can I pass the value of showcustom and how to read that in LinkManager.ascx to show/hide the 'custombutton'

Quick reply will be of great help.

Thanks  in advance.
skelkar
Rumen
Telerik team
 answered on 07 Oct 2009
1 answer
152 views
Hi folks,

is it possible to suppress the replacement of some special-characters when submitting the editors content?
E.g.: in HTML-View we have this content:
<href="http://whatever.com/a.aspx?p1=123&p2=abc">whatever</a> 

After submitting the content or switching modes i looks like this:
<href="http://whatever.com/a.aspx?p1=123&amp;p2=abc">whatever</a>  

so & becomes &amp;

how can we suppress this replacement?
(Firefox 3.5.3, latest Telerik-dll)
Thanks in advance

Felix


Rumen
Telerik team
 answered on 07 Oct 2009
1 answer
140 views
Hi,

I'm using the Save grid settings tutorial from the Telerik Help site (http://www.telerik.com/help/aspnet/grid/grdsavingsettingsonperuserbasis.html) to save and load the settings using the ASP.NET Profiles.

Now I want to reset all settings of a grid. Grouping, Sorting and Filtering can be cleared using the MasterTableView property of the grid, but I do not know how to reset the Width, Order and Visibility of the columns to its defaults. Can anybody help me with this?

Thx,
Danny
Veli
Telerik team
 answered on 07 Oct 2009
3 answers
138 views

My cient has reported an issue when tryng to enter a blank line in the editor:

To reproduce the blank line issue

1) Create a bullet point with some text, when you get to the end of the text type 'shift + enter' to put in a blank line. Then hit 'enter' and you should get the next bullet point with an empty line between the two bullets.

2) click on the 'html' tab to view the html.

3) click on the 'edit' tab to view the text, you should notice that the empty line has been taken out.

Why is the blank line being removed?

Regards,
Darren

Rumen
Telerik team
 answered on 07 Oct 2009
2 answers
115 views
I'm using the 3 tier heirarchichal demo

based on a user click in a checkbox on my page, I want to filter the most inner grid specific to the user on the page

Protected Sub CheckBox_CheckedChanged(ByVal sender As ObjectByVal e As System.EventArgs) 
 
        Dim whereclause As New StringBuilder 
        If CheckBox.Checked = True Then 
            whereclause.Append(" where PersonId = " + Session("PersonnelID").ToString + ""
        Else 
        End If 
 
        Dim selectclause As New StringBuilder("SELECT * FROM [Stuff]"
        Me.SqlDataSource3.SelectCommand = selectclause.ToString & whereclause.ToString 
        Me.SqlDataSource3.Select(New System.Web.UI.DataSourceSelectArguments) 
 
        Radgrid1.Rebind 
 
    End Sub 

Right now my code here is doubling the ammount of info in the grid rather than filtering it, what am I doing wrong?

any help would be appreciated
Yavor
Telerik team
 answered on 07 Oct 2009
4 answers
474 views
Hi,

    I need to have a multiselect radcombobox. I have referred to the examples provided in Url: http://www.telerik.com/community/code-library/aspnet-ajax/combobox/using-checkboxes-for-multi-item-selection.aspx.

  It was really great. Here the problem is i will not add items at client side. In my project i have to add items in to combobox dynamically as :
for(int i=0; i<3; i++)
{
RadComboBoxItem rcb = new RadComboBoxItem(i.ToString());

RadComboBox1.Items.Add(rcb);   // RadComboBox1 is the name of combobox.
}

I tried to modify example which you have given. I have removed items part and added items as shown above. I was able to see the checkbox's for items but not the text of RadComboBox. When i have selected some of them and clicked button to display which items were selected then luckly i could see the correct items which i have checked.

The only problem is i could't see items text, but could see checkbox's for items. Hope you give some idea in this.


Thanks
Nagarjun S.
Axel
Top achievements
Rank 2
 answered on 07 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?