I've put a asp.fileupload-control and a Submit-Button in the advanced form for the "advancedEditTemplate".
this does not work - the file-upload has no files.
Is it possible to send files to the server right out of the AdvanvedEditTemplate. And if the answer is "yes" - how can I do that.
Tanks,
Otto
6 Answers, 1 is accepted
0
Hi Otto,
There is a code library project on how to integrate RadUpload in the advanced form of RadScheduler:
http://www.telerik.com/community/code-library/aspnet-ajax/scheduler/upload-in-radscheduler.aspx
Let us know if you have any questions.
Best wishes,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
There is a code library project on how to integrate RadUpload in the advanced form of RadScheduler:
http://www.telerik.com/community/code-library/aspnet-ajax/scheduler/upload-in-radscheduler.aspx
Let us know if you have any questions.
Best wishes,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Otto
Top achievements
Rank 1
answered on 01 Apr 2010, 01:22 PM
Thank You,
your example was rely what I needed. Works like a charm.
tx, o
0

Otto
Top achievements
Rank 1
answered on 07 Apr 2010, 11:57 AM
Invalide viewstate
after adding a additional panel with 2 Buttons and a Checklistbox (nothing fancy I think)
ASPX here:
<asp:TextBox runat="server" ID="tbSearchContacts" ></asp:TextBox>
<asp:Button runat="server" ID="btnSearchContacts" Text="Search Contacts"
onclick="btnSearchContacts_Click" /><br />
<asp:CheckBoxList ID="cblContacts" runat="server" />
<asp:Button runat="server" ID="btnUseContacts" Visible="false"
Text="Use Contacts" onclick="btnUseContacts_Click" style="width: 119px"/>
</asp:Panel>
Code here:
[Bindable(BindableSupport.Yes, BindingDirection.TwoWay)]
public string Contacts
{
get
{
StringBuilder sb = new StringBuilder();
foreach (ListItem item in cblContacts.Items)
{
if (item.Selected)
sb.Append(item.Value + "|");
}
return sb.ToString().Trim('|');
}
set
{
if (string.IsNullOrEmpty(value)) return;
string[] contacts = value.Split('|');
cblContacts.DataSource = contacts;
cblContacts.DataBind();
}
}
protected void btnSearchContacts_Click(object sender, EventArgs e)
{
string [] contacts = new string[]{"Heinz", "Bernd", "olga"};
cblContacts.DataSource = contacts;
cblContacts.DataBind();
btnUseContacts.Visible = true;
}
protected void btnUseContacts_Click(object sender, EventArgs e)
{
btnUseContacts.Visible = false;
}
I got
|
Source File: C:\Röfix\CRM\Source\Surface\CRM.WEB\Webforms\TransactionalWebFormBasePage.cs Line: 18
Assembly Load Trace: The following information can be helpful to determine why the assembly 'Telerik.Web.UI, Version=2010.1.309.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4' could not be loaded.
|
Stack Trace:
|
0
Hello Otto,
We tried to replicate the problem using the code project and your code, but to no avail. Please, check the attached modified demo.
Cheers,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
We tried to replicate the problem using the code project and your code, but to no avail. Please, check the attached modified demo.
Cheers,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Jon Morris
Top achievements
Rank 1
answered on 21 Sep 2010, 03:16 PM
Hi,
Not to hijack this thread, but, seems relavent. Is there an equivalent demo project in VB?
Thanks,
Sri
Not to hijack this thread, but, seems relavent. Is there an equivalent demo project in VB?
Thanks,
Sri
0
Hi Jon Morris,
No problem for that.
You may find the Visual Basic version in the attached .zip file.
All the best,
Veronica Milcheva
the Telerik team
No problem for that.
You may find the Visual Basic version in the attached .zip file.
All the best,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items