1. BreezeJS Feature Suggestions
Help us make Breeze.js better by letting us know what you’d like to see next.
Suggest new features, vote on existing ones, or fork Breeze in GitHub and send us a pull request.
272 results found
-
Can anyone give me Tutorial 1 - Queries - w/Angular full code please
Can anyone give me http://learn.breezejs.com Tutorial 1 - Queries - w/Angular full code
As im a beginner. i need the full functional code that i can run locally the same sample application
please help me1 vote -
Optimize transfer by minifying attribute names
Using human readable names for objects is very helpful for readability, but it bloats the size of the data being transferred for each query. Create a minifier like uglify that translates attribute names into very small strings. Have the mapping tables be available on both client and server sides for translation so that when the objects are being used on either the client side or server side, the developer sees the full names. Allow for using non-minified transfers when debugging the transfer process.
1 vote -
1 vote
-
EntityQuery.withParameters to inject variables into resource name
Much like it injects querystring parameters to the request using the object passed to it - it would be nice if it could first look for replacement tokens in the resourceName property of the query.
for example:
var qry = breeze.EntityQuery
.from("Studies/{StudyID}/Sites/{SiteID}/People")
.withParameters({StudyID: 123, SiteID: 555});instead, currently, I am doing this:
var resourceName = String.format("Studies/{0}/Sites/{1}/{2}", pStudyID, pSiteID, referralName.APIName);
var query = breeze.EntityQuery.from(resourceName);
....1 vote -
Fire event on metadata FETCHING (not just fetched
There is a helpful event for metadataFetched. However, it would be even more helpful to also add an event right BEFORE the metadata request is sent out.
My use case for this is I am showing textual progress updates on screen, and I would like to update the message when metadata is fetching. I can use the "Fetched" event to show that we are done, but would need a "Fetching" event to indicate when we start.
1 vote -
Looking for breeze to rock SharePoint data
I am just looking if Breeze has already working with SharePoint data,
1 vote -
The online tutorial is broken again.
Just tried and it is not working.
Thanks
1 vote -
Add PATCH verb to breeze
I keep having to add the PATCH verb into the breezejs framework so that it is compatible with ODATA3. This needs to be done in the createChangeRequests function
1 vote -
Can Breeze support Common Table Expression Recursive Query
Hi,
I am using BreezeJS alongwith angular. I would like to know if BreezeJS can support Common Table Expression alongwith othere Breeze predicates.
Thanks,
Dhanaji1 vote -
Configure breeze treatment of custom EntityType constructor members
Today you can extend a Breeze client EntityType by specifying a constructor with custom members - often unmapped properties - and registering the ctor with a MetadataStore. But you can't tell Breeze how it should treat those custom members. This is a request to be able to specify how Breeze treats them, i.e., whether they are serialized locally, serialized to remote service, rewritten for the prevailing model library (e.g., KO), if changes to the property change the EntityState. This request is identified internally as #2099
1 vote -
Provide a server side logging module that would automatically log selected operations.
Ideally, this would be configured via attributes as well as thru a programmatic API.
1 vote -
Please add authentication functionalities as in DevForce.
Please add authentication functionalities as in DevForce.
1 vote
- Don't see your idea?