sankardeep v
Top achievements
Rank 1
sankardeep v
asked on 23 Sep 2010, 08:45 AM
Hi ,
I am using Radupload control for uploading multiple files .
I have set the ControlObjectsVisibility property of upload control as Default" .
So in the upload control there is check box for each file . I just want these check box to
checked by default( it is not checked by default ) . It will be really helpful if there is a way to do that .
Regards,
Sankardeep.V
Associate Software Engineer
Digital Mesh Pvt Limited
I am using Radupload control for uploading multiple files .
I have set the ControlObjectsVisibility property of upload control as Default" .
So in the upload control there is check box for each file . I just want these check box to
checked by default( it is not checked by default ) . It will be really helpful if there is a way to do that .
Regards,
Sankardeep.V
Associate Software Engineer
Digital Mesh Pvt Limited
6 Answers, 1 is accepted
0
Cori
Top achievements
Rank 2
answered on 23 Sep 2010, 02:45 PM
The checkboxes that are shown by the RadUpload control are used in conjunction with the delete button, to remove the upload boxes. It's not required to check them off to have the file upload.
Is that the reason your asking if the checkboxes can be selected by default because your users believe they need to be checked in order for it to upload?
If you show why not just remove it by changing the ControlObjectsVisibility to only show the controls you need. You don't really need the Delete button, since they have a Remove button shown next to each upload control.
I hope that helps.
Is that the reason your asking if the checkboxes can be selected by default because your users believe they need to be checked in order for it to upload?
If you show why not just remove it by changing the ControlObjectsVisibility to only show the controls you need. You don't really need the Delete button, since they have a Remove button shown next to each upload control.
I hope that helps.
0
sankardeep v
Top achievements
Rank 1
answered on 27 Sep 2010, 12:28 PM
Hi Cori ,
Thanks for the reply . I already know about the points you have listed . i just wanna know
is it possible or the check box to be default as checked .
Thanks for the reply . I already know about the points you have listed . i just wanna know
is it possible or the check box to be default as checked .
0
Hi sankardeep v,
This functionality is not supported by RadUpload out of the box. The user has to manually check or uncheck the checkboxes. As Cory has mentioned, If you find them confusing consider using the ControlObjectsVisibility to remove them.
Kind regards,
Genady Sergeev
the Telerik team
This functionality is not supported by RadUpload out of the box. The user has to manually check or uncheck the checkboxes. As Cory has mentioned, If you find them confusing consider using the ControlObjectsVisibility to remove them.
Kind regards,
Genady Sergeev
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
sankardeep v
Top achievements
Rank 1
answered on 30 Sep 2010, 06:11 AM
Ok Thanks.
Regards
sankardeep
Regards
sankardeep
0
mukesh
Top achievements
Rank 1
answered on 28 Oct 2010, 07:19 PM
HI
I m using telerik upload control ,and want to get checked item in upload control,please let me know that how get checked item in telerik file upload control.
thanks
mukesh kumar
I m using telerik upload control ,and want to get checked item in upload control,please let me know that how get checked item in telerik file upload control.
thanks
mukesh kumar
0
Hello mukesh,
Why do you need the check item? Could you please explain your scenario. By default the checboxes are used in order to adorn which items should be deleted by the delete button. Apart from this, you can use jQuery in order to grab the checked rows values:
All the best,
Genady Sergeev
the Telerik team
Why do you need the check item? Could you please explain your scenario. By default the checboxes are used in order to adorn which items should be deleted by the delete button. Apart from this, you can use jQuery in order to grab the checked rows values:
$telerik.$(
".ruCheck"
)
.each(
function
(index, val) { alert($telerik.$(val).parent().find(
".ruFakeInput"
).val())
});
All the best,
Genady Sergeev
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