How to remove BatchUpdateCommands from UXGridView StatusBar when is enabled data editing?

5 replies. Last post: July 9, 2011 12:46 AM by Jimmy Petrus
Tags :

Hi,

How Can I remove or hidden BatchUpdateCommands "Undo All Changes" and "Save All Changes" from UXGridView StatusBar when CanUserAddRows="True", CanUserEditRows="True" and CanUserDeleteRows="True" ?

I attached simple picture, that shows wchich buttons I mean.

Is it posiible for UXGridView?

Regards,
Krzysztof

Answers

Jimmy PetrusAdministrator
Hello,

The UXGridView in SP1 now includes a new property called CanUserBatchUpdate. Simply set it to false to disable bacth update explicitly.

Hope this helps,
Jimmy

All Replies

Hello Krzysztof,

I have forwarded your question to our developers to know whether it is possible for UXGridView or not. I will let you know as soon as possible after I get any updates from them.


Thank you.
Riendy

Hi Krzysztof,

To remove/hide BatchUpdateCommands in your version (2011 R1), you have to edit the entire template manually. But in product 2011 R1 SP1, we have implement the feature to disable or hide the BatchUpdateCommand, named CanUserBatchUpdate. 


Thank you.
Riendy 




Hi Riendy,
Thanksfor qiuck response.
1.
When you plan to release a new version 2011 R1 SP1?

2.
Is there any example in your documentation which describe how to edit the entire template manually?

Regards,
Krzysztof

Hi Krzysztof,

First of all, our time line to release the product 2011 R1 SP1 is this late night (US time). Hope there is no trouble to release it soon.
Regarding to your question "how to edit the entire template manually?", there is no example in our documentation which is describe it. Anyway, to disable the BatchUpdate, you can set it in viewModel, in example you can put the following code in construction product.xaml :

this.IsBatchUpdate = true; // to enable IsBatchUpdate
this.IsBatchUpdate = false; // to disable IsBatchUpdate 

Then to hide/remove the BatchUpdate, you can follow this steps (i.e delete IsBatchUpdate button in product.xaml) :

  1. right click on Product.xaml in Views folder then select Open in Expression Blend...
  2. Expression blend opened, then right click on grid/page and select Edit template then Edit a copy... Click OK button.
  3. It will create a UXGridViewStyle1 (UXgridViewTemplate).
  4. In Objects and Timeline, expand the following objects : Template-[Grid]-[UXBusyIndicator]-[Grid]-[Border]-Root-StatusBar-EditingCommandItem-[StackPanel]
  5. There are 2 [UXFlatButton], set the Visibility of each button on appearance property to collapsed.
  6. After the property applied collapsed to each [UXFlatButton], go back to visual studio by right clicking on product.xaml (in projects) and select Edit in Visual Studio.
  7. It will be back to VS, and then accept to reaload the page.
  8. BatchUpdate being disable now.
Please do not hesitate to ask me if you still have any question.
Riendy

Jimmy PetrusAdministrator
Hello,

The UXGridView in SP1 now includes a new property called CanUserBatchUpdate. Simply set it to false to disable bacth update explicitly.

Hope this helps,
Jimmy
All times are GMT -5. The time now is 2:08 PM.
Previous Next