Questions tagged [viewflow]

Viewflow is android library, which is an alternative to ViewPager to be used on older SDKs.

ViewFlow is an Android UI widget providing a horizontally scrollable ViewGroup with items populated from an Adapter. Scroll down to the bottom of the page for a screen shot.

The component is a Library Project. This means that there's no need to copy-paste resources into your own project, simply add the viewflow component as a reference to any project.

25 questions
2
votes
2 answers

ViewFlow & CircleFlowIndicator - Null Pointer Exception

I am using ViewFlow & CircleFlowIndicator to view & show circle to indicate changes in View Still i am showing same text for each and every View, see below image : Note: still showing "Remember Life" in textView1 and "Instantly search memories for…
Mysterious
  • 173
  • 10
1
vote
1 answer

working with django Viewflow by non-superusers not superuser

I'm learning django viewflow (non-Pro) and the all processes that I've been creating works for superuser users only is any way to use django viewflow by normal user or non superuser or another way to disable django permission checking for django…
1
vote
1 answer

Why django-viewflow internal table 'viewflow_task_previous' goes backwards?

Given the following steps defined And when I dig into the internal tables, especially viewflow_task_previous table, it seems the from and to are reversed? pmas=> select * from viewflow_task_previous where from_task_id = 10248; id | from_task_id…
James Lin
  • 25,028
  • 36
  • 133
  • 233
1
vote
1 answer

Viewflow: what's the best/canonical way to get the current pending task?

I inspected the Process model, and found active_tasks method: def active_tasks(self): """List of non finished tasks.""" return self.flow_class.task_class._default_manager \ .filter(process=self, finished__isnull=True)…
James Lin
  • 25,028
  • 36
  • 133
  • 233
1
vote
1 answer

Add fields to a Task without needing it in the Process?

I am currently using ViewFlow to model the process of creating websites in my company. My flow produces a website from an AWS instance to a E commerce site. Each Task in my flow adds a little bit of information to my site. Examples: pick domain,…
Tinker
  • 4,165
  • 6
  • 33
  • 72
1
vote
1 answer

how to configure viewflow filter?

i have viewflow install on my local computer, but i don't have the filter like a demo online: http://demo.viewflow.io Follow the full tutorial on the quick start but Anyone know how to activate it?
1
vote
1 answer

django-viewflow : No module named site

i'm trying to develop a function in my project using django-vieflow. I try to understand the whole flow using this tutorial ViewFlow-HelloWorld But, when i try to makemigrations i got and error saying No module named site. What did i miss?
MunirohMansoor
  • 355
  • 1
  • 10
  • 19
1
vote
1 answer

@FXMLViewFlowContext Null pointer exception

I want to create a JavaFX Application for my client. I found DataFX framework and like it. But I have problem with @FXMLViewFlowContext because it returns null each time when I call child fview from my parent. I used lib version 8.0.7 and below…
sancho
  • 598
  • 2
  • 8
  • 22
1
vote
0 answers

List does not updated until I scroll while using viewflow library

I am using ViewFlow library from Github. ViewFlow I am displaying four swipe screens using this library. In of these screens there is a listview. Data for this list changes when user presses a button. My problem is that i have to scroll the list or…
Anand
  • 1,335
  • 1
  • 12
  • 20
1
vote
1 answer

Android create shadow effect on layout or views

can anyone suggest how can i give shadow to particular view or layout..here is image what i want actually: you can see dark shadow at cover flow (behind dots). does any one has idea about ? Answer will be greatly appreciated. Thanks in Advance.
Kalpesh Lakhani
  • 1,003
  • 14
  • 28
1
vote
1 answer

Android ViewFlow setFlowIndicator IndexOutOfBoundException

I am having a problem with the ViewFlow class from pakerfeldt on Github. I am trying to make a 'Different View View Flow'. Here is my activity code: package com.suncco.silent_communities.activity; import…
Karl-John Chow
  • 775
  • 2
  • 8
  • 26
0
votes
1 answer

Not able to get flow link in my viewflow application

I'm using viewflow engine in my django project to render the workflow in UI.On running the local server I'm not able to see the "flow" link on left bottom part of the screen which is used to see the graphical representation of workflow.Am I missing…
0
votes
1 answer

assign task no to the current user in viewflow

I have been using viewflow for a while, and I managed to create my process without any problem. But now I need someone to review the work from someone else. I don't want to create roles for that simple task, because I want everybody to be able…
0
votes
1 answer

viewflow: How can I disable long embeded list of data on default frontend screens?

I'm currently using viewflow frontend for the management part of our workflow and we're getting huge loading times on default views that have started to show just after we started using the system for testing purposes. Is there a param somewhere I…
SirML
  • 1
  • 1
0
votes
1 answer

ViewFlow HelloWorldFlow programmatic trigger of StartActivation not saving process

I tried to trigger off a new HelloWorldFlow (demo from ViewFlow) Process instance programmatically instead of via CreateProcessView using the following code. However after executing the code, I find that the nothing is saved to the database. …
1
2